semantix icon indicating copy to clipboard operation
semantix copied to clipboard

(Discontinued) Non-Pydantic, Non-JSON Schema, efficient AutoPrompting and Structured Output Library

Results 6 semantix issues
Sort by recently updated
recently updated
newest added

# 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. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ghcr.io/meaningful-ooo/devcontainer-features/fish&package-manager=devcontainers&previous-version=1.3.0&new-version=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...

dependencies
devcontainers_package_manager

Use something other than Loguru for better nice-looking execution display

enhancement

```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...

enhancement

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.

bug