mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-15 11:00:47 +02:00
# Description of Changes Redesign the Python AI engine to be properly agentic and make use of `pydantic-ai` instead of `langchain` for correctness and ergonomics. This should be a good foundation for us to build our AI engine on going forwards.
10 lines
164 B
Python
10 lines
164 B
Python
from __future__ import annotations
|
|
|
|
from stirling.models import ApiModel
|
|
|
|
|
|
class HealthResponse(ApiModel):
|
|
status: str
|
|
smart_model: str
|
|
fast_model: str
|