Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Semantic Router
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
aurelio-labs
Semantic Router
Commits
9a9249a2
Unverified
Commit
9a9249a2
authored
1 year ago
by
James Briggs
Browse files
Options
Downloads
Patches
Plain Diff
fix tests env var and lint
parent
d96ec2ea
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.github/workflows/pr_agent.yml
+1
-1
1 addition, 1 deletion
.github/workflows/pr_agent.yml
semantic_router/utils/llm.py
+1
-0
1 addition, 0 deletions
semantic_router/utils/llm.py
tests/unit/test_layer.py
+9
-2
9 additions, 2 deletions
tests/unit/test_layer.py
with
11 additions
and
3 deletions
.github/workflows/pr_agent.yml
+
1
−
1
View file @
9a9249a2
...
@@ -14,5 +14,5 @@ jobs:
...
@@ -14,5 +14,5 @@ jobs:
id
:
pragent
id
:
pragent
uses
:
Codium-ai/pr-agent@main
uses
:
Codium-ai/pr-agent@main
env
:
env
:
OPENAI_KEY
:
${{ secrets.OPENAI_KEY }}
OPENAI_
API_
KEY
:
${{ secrets.OPENAI_
API_
KEY }}
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
This diff is collapsed.
Click to expand it.
semantic_router/utils/llm.py
+
1
−
0
View file @
9a9249a2
...
@@ -33,6 +33,7 @@ def llm(prompt: str) -> str | None:
...
@@ -33,6 +33,7 @@ def llm(prompt: str) -> str | None:
logger
.
error
(
f
"
LLM error:
{
e
}
"
)
logger
.
error
(
f
"
LLM error:
{
e
}
"
)
raise
Exception
(
f
"
LLM error:
{
e
}
"
)
raise
Exception
(
f
"
LLM error:
{
e
}
"
)
# TODO integrate async LLM function
# TODO integrate async LLM function
# async def allm(prompt: str) -> str | None:
# async def allm(prompt: str) -> str | None:
# try:
# try:
...
...
This diff is collapsed.
Click to expand it.
tests/unit/test_layer.py
+
9
−
2
View file @
9a9249a2
...
@@ -178,7 +178,10 @@ class TestRouteLayer:
...
@@ -178,7 +178,10 @@ class TestRouteLayer:
route_layer
.
to_json
(
"
test_output.json
"
)
route_layer
.
to_json
(
"
test_output.json
"
)
assert
os
.
path
.
exists
(
"
test_output.json
"
)
assert
os
.
path
.
exists
(
"
test_output.json
"
)
route_layer_from_file
=
RouteLayer
.
from_json
(
"
test_output.json
"
)
route_layer_from_file
=
RouteLayer
.
from_json
(
"
test_output.json
"
)
assert
route_layer_from_file
.
index
is
not
None
and
route_layer_from_file
.
categories
is
not
None
assert
(
route_layer_from_file
.
index
is
not
None
and
route_layer_from_file
.
categories
is
not
None
)
os
.
remove
(
"
test_output.json
"
)
os
.
remove
(
"
test_output.json
"
)
def
test_yaml
(
self
,
openai_encoder
,
routes
):
def
test_yaml
(
self
,
openai_encoder
,
routes
):
...
@@ -186,7 +189,10 @@ class TestRouteLayer:
...
@@ -186,7 +189,10 @@ class TestRouteLayer:
route_layer
.
to_yaml
(
"
test_output.yaml
"
)
route_layer
.
to_yaml
(
"
test_output.yaml
"
)
assert
os
.
path
.
exists
(
"
test_output.yaml
"
)
assert
os
.
path
.
exists
(
"
test_output.yaml
"
)
route_layer_from_file
=
RouteLayer
.
from_yaml
(
"
test_output.yaml
"
)
route_layer_from_file
=
RouteLayer
.
from_yaml
(
"
test_output.yaml
"
)
assert
route_layer_from_file
.
index
is
not
None
and
route_layer_from_file
.
categories
is
not
None
assert
(
route_layer_from_file
.
index
is
not
None
and
route_layer_from_file
.
categories
is
not
None
)
os
.
remove
(
"
test_output.yaml
"
)
os
.
remove
(
"
test_output.yaml
"
)
def
test_config
(
self
,
openai_encoder
,
routes
):
def
test_config
(
self
,
openai_encoder
,
routes
):
...
@@ -200,6 +206,7 @@ class TestRouteLayer:
...
@@ -200,6 +206,7 @@ class TestRouteLayer:
assert
(
route_layer_from_config
.
categories
==
route_layer
.
categories
).
all
()
assert
(
route_layer_from_config
.
categories
==
route_layer
.
categories
).
all
()
assert
route_layer_from_config
.
score_threshold
==
route_layer
.
score_threshold
assert
route_layer_from_config
.
score_threshold
==
route_layer
.
score_threshold
# Add more tests for edge cases and error handling as needed.
# Add more tests for edge cases and error handling as needed.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment