Skip to content

Commit

Permalink
Merge pull request #5 from pythonpete32/patch-1
Browse files Browse the repository at this point in the history
fix typo in README.md
  • Loading branch information
metaskills authored May 21, 2024
2 parents d660f7a + f9894c0 commit da166cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The new Assistants API from OpenAI sets a new industry standard, significantly a
Experts.js aims to simplify the usage of this new API by removing the complexity of managing [Run](https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps) objects and allowing Assistants to be linked together as Tools.

```javascript
const thread = Thread.create();
const thread = await Thread.create();
const assistant = await MyAssistant.create();
const output = await assistant.ask("Say hello.", thread.id);
console.log(output) // Hello
Expand Down

0 comments on commit da166cf

Please sign in to comment.