Skip to content

Commit

Permalink
add resolve package test for document generator tool
Browse files Browse the repository at this point in the history
  • Loading branch information
leehuwuj committed Oct 1, 2024
1 parent b210302 commit 51a6dac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions e2e/python/resolve_dependencies.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ if (
const toolOptions = [
"wikipedia.WikipediaToolSpec",
"google.GoogleSearchToolSpec",
"document_generator",
];

const dataSources = [
Expand Down
4 changes: 2 additions & 2 deletions e2e/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ export async function runCreateLlama({
externalPort,
);
} else if (postInstallAction === "dependencies") {
await waitForProcess(appProcess, 2000 * 60); // wait 2 min for dependencies to be resolved
await waitForProcess(appProcess, 1000 * 60); // wait 1 min for dependencies to be resolved
} else {
// wait 10 seconds for create-llama to exit
await waitForProcess(appProcess, 1000 * 20);
await waitForProcess(appProcess, 1000 * 10);
}

return {
Expand Down
2 changes: 1 addition & 1 deletion helpers/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ For better results, you can specify the region parameter to get results from a s
dependencies: [
{
name: "xhtml2pdf",
version: "^0.2.16",
version: "^0.2.14",
},
{
name: "markdown",
Expand Down

0 comments on commit 51a6dac

Please sign in to comment.