code editor: Agent Studio improvement iteration 1 for quote-judge-studio-v1. Goal:
This commit is contained in:
2
a2a.yaml
2
a2a.yaml
@@ -1,5 +1,5 @@
|
||||
name: quote-judge-studio-v1
|
||||
version: 0.1.0
|
||||
version: 0.1.4
|
||||
entrypoint: agent:QuoteJudgeStudioV1
|
||||
expose:
|
||||
public: false
|
||||
|
||||
2
agent.py
2
agent.py
@@ -43,7 +43,7 @@ MAX_QUOTES = 20
|
||||
MAX_UPLOAD_BYTES = 64_000
|
||||
MAX_BROWSER_UPLOADS = 3
|
||||
ALLOWED_UPLOAD_MEDIA_TYPES = ("text/csv", "text/plain", "application/json")
|
||||
VERSION = "0.1.0"
|
||||
VERSION = "0.1.4"
|
||||
|
||||
|
||||
class QuoteJudgeStudioV1Config(BaseModel):
|
||||
|
||||
File diff suppressed because one or more lines are too long
43
frontend/dist/index.html
vendored
43
frontend/dist/index.html
vendored
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "quote-judge-studio-v1-frontend",
|
||||
"private": true,
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.4",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite --host 0.0.0.0 --port 5173",
|
||||
|
||||
@@ -49,7 +49,7 @@ def test_full_stack_product_contract():
|
||||
assert migrations and all(path.read_text(encoding="utf-8").strip() for path in migrations)
|
||||
|
||||
card = load_local_project(ROOT).agent_cls().card()
|
||||
assert card.version == "0.1.0"
|
||||
assert card.version == "0.1.4"
|
||||
skill_names = {skill.name for skill in card.skills}
|
||||
assert {"compare_quotes", "get_comparison", "compare_quotes_file", "compare_quotes_upload", "compare_quotes_browser_upload"} <= skill_names
|
||||
databases = card.runtime.platform_resources.databases
|
||||
|
||||
Reference in New Issue
Block a user