-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip * Anthropic support and refactors tests. * Add Gemini, make streaming more resilient * Add an OCR example with validations. * Please add the streaming UI example.
- Loading branch information
Showing
19 changed files
with
1,404 additions
and
370 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "mix_task", | ||
"name": "mix (Default task)", | ||
"request": "launch", | ||
"projectDir": "${workspaceRoot}" | ||
}, | ||
{ | ||
"type": "mix_task", | ||
"name": "mix test", | ||
"request": "launch", | ||
"task": "test", | ||
"taskArgs": [ | ||
"--trace" | ||
], | ||
"debugAutoInterpretAllModules": false, | ||
"debugInterpretModulesPatterns": ["Instructor.*"], | ||
"startApps": true, | ||
"projectDir": "${workspaceRoot}", | ||
"requireFiles": [ | ||
"test/**/test_helper.exs", | ||
"test/**/*_test.exs" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.