semantix
semantix copied to clipboard
(Discontinued) Non-Pydantic, Non-JSON Schema, efficient AutoPrompting and Structured Output Library
# UnboundLocalError when running example code ## Description When running the example code provided in the documentation, an `UnboundLocalError` occurs, indicating that the variable `meaning` is referenced before assignment. ##...
Bumps ghcr.io/meaningful-ooo/devcontainer-features/fish from 1.3.0 to 2.0.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Use something other than Loguru for better nice-looking execution display
```python llm = OpenAI() def wikipedia_search(query: str) -> str: # wikipedia calling logic @llm.agent("Answer the Question", tools=[wikipedia_search]) def answer(question: str) -> Semantic[str, "answer to the question"]: ... ``` This will...
For example ```python class Apple: type: FruitType description: str color: str ``` In the type definitions, only the explanation of Apple is there and FruitType is not available.