Skip to content

Commit e320949

Browse files
committed
fmt
1 parent a702ec0 commit e320949

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

.gitignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ yarn-error.log
1515

1616
# Environment variables
1717
.env
18-
.env.local
19-
.env.development.local
20-
.env.test.local
21-
.env.production.local
18+
.env.*
19+
!.env.example
2220

2321
packages/ui/.env
2422

API_DOCUMENTATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,8 @@ Fetch paginated user queries. If no date range is provided, returns the most rec
378378
"agent_id": "cairo-coder",
379379
"query": "How do I declare a storage variable in Cairo 1?",
380380
"chat_history": [
381-
{"role": "user", "content": "What is Cairo?"},
382-
{"role": "assistant", "content": "Cairo is a programming language..."}
381+
{ "role": "user", "content": "What is Cairo?" },
382+
{ "role": "assistant", "content": "Cairo is a programming language..." }
383383
],
384384
"output": "To declare a storage variable in Cairo 1, you use the #[storage] attribute..."
385385
}

python/src/cairo_coder/db/repository.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from __future__ import annotations
66

77
import json
8-
import uuid
98
from datetime import datetime
109
from typing import Any
1110

python/src/cairo_coder_tools/datasets/migrate_langsmith.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
from datetime import datetime, timezone
1212
from typing import Any
1313

14-
from cairo_coder.agents.registry import AgentId
1514
import structlog
1615

16+
from cairo_coder.agents.registry import AgentId
1717
from cairo_coder.db.models import UserInteraction
1818
from cairo_coder.db.repository import migrate_user_interaction
1919

0 commit comments

Comments
 (0)