-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: migrate tach config from YAML to TOML and add voyage provider …
…tests Co-Authored-By: Alex Reibman <[email protected]>
- Loading branch information
1 parent
f065f50
commit 7cf6400
Showing
4 changed files
with
64 additions
and
20 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
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,26 @@ | ||
exclude = [ | ||
".*__pycache__", | ||
".*egg-info", | ||
"docs", | ||
"examples", | ||
"tests", | ||
"venv", | ||
] | ||
source_roots = [ | ||
".", | ||
] | ||
|
||
[[modules]] | ||
path = "agentops" | ||
depends_on = [ | ||
{ path = "agentops.enums" }, | ||
{ path = "agentops.log_config" }, | ||
] | ||
|
||
[[modules]] | ||
path = "agentops.enums" | ||
depends_on = [] | ||
|
||
[[modules]] | ||
path = "agentops.log_config" | ||
depends_on = [] |
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