Skip to content

Commit

Permalink
fix: max tokens too lesss
Browse files Browse the repository at this point in the history
  • Loading branch information
sshivaditya committed Jan 9, 2025
1 parent 2ea17b1 commit 5a3c6c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compute.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "@ubiquity-os-marketplace/command-ask"
name: "@ubiquity-os-marketplace/personal-agent"

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion src/adapters/openai/helpers/completions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class Completions extends SuperOpenAi {

constructor(client: OpenAI, context: Context) {
super(client, context);
this.maxTokens = 100;
this.maxTokens = 100000;
this.attempts = 0;
this.tools = {
readFile: new ReadFile(),
Expand Down

0 comments on commit 5a3c6c9

Please sign in to comment.