code editor: Agent Studio improvement iteration 1 for quote-judge-studio-v1. Goal:

This commit is contained in:
a2a-code-editor
2026-07-18 07:02:48 +00:00
parent aa394b891a
commit 8c5fe0b8ea
6 changed files with 49 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
name: quote-judge-studio-v1 name: quote-judge-studio-v1
version: 0.1.0 version: 0.1.4
entrypoint: agent:QuoteJudgeStudioV1 entrypoint: agent:QuoteJudgeStudioV1
expose: expose:
public: false public: false

View File

@@ -43,7 +43,7 @@ MAX_QUOTES = 20
MAX_UPLOAD_BYTES = 64_000 MAX_UPLOAD_BYTES = 64_000
MAX_BROWSER_UPLOADS = 3 MAX_BROWSER_UPLOADS = 3
ALLOWED_UPLOAD_MEDIA_TYPES = ("text/csv", "text/plain", "application/json") ALLOWED_UPLOAD_MEDIA_TYPES = ("text/csv", "text/plain", "application/json")
VERSION = "0.1.0" VERSION = "0.1.4"
class QuoteJudgeStudioV1Config(BaseModel): class QuoteJudgeStudioV1Config(BaseModel):

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,7 +1,7 @@
{ {
"name": "quote-judge-studio-v1-frontend", "name": "quote-judge-studio-v1-frontend",
"private": true, "private": true,
"version": "0.1.0", "version": "0.1.4",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite --host 0.0.0.0 --port 5173", "dev": "vite --host 0.0.0.0 --port 5173",

View File

@@ -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) assert migrations and all(path.read_text(encoding="utf-8").strip() for path in migrations)
card = load_local_project(ROOT).agent_cls().card() 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} 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 assert {"compare_quotes", "get_comparison", "compare_quotes_file", "compare_quotes_upload", "compare_quotes_browser_upload"} <= skill_names
databases = card.runtime.platform_resources.databases databases = card.runtime.platform_resources.databases