Testapp/requirements.txt
Nora cdc3d3c4dc feat: BMAD-Agenten, Kern-Workflow & lauffähiger Photo-to-Listing-Prototyp
- src/models.py: typisierte Verträge (dataclasses, Stdlib-only)
- src/llm/claude_client.py: Adapter um 'claude -p' mit Mock-Fallback
- src/agents/: BaseAgent + Vision, Market, Listing, Chat + Orchestrator
- src/workflow.py: photo_to_listing() Fassade
- spike/prototype.py + concept_spike.py: lauffähige End-to-End-Demo
- tests/: 28 unittest-Tests (Mock-Pfad, offline deterministisch)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-27 13:57:45 +00:00

20 lines
586 B
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# eBay-Auto-Lister Abhängigkeiten (Starter, Versionen beim ersten Pin festlegen)
#
# Der Spike (spike/concept_spike.py) und die Agenten-Stubs laufen bewusst NUR
# mit der Python-Standardbibliothek. Die folgenden Pakete werden erst benötigt,
# sobald echte Implementierungen die Stubs ersetzen.
# --- LLM / Agenten ---
# anthropic # Claude-Modelle (Bildanalyse, Listing-Texte, Chat-Moderation)
# --- API-Layer (src/api) ---
# fastapi
# uvicorn[standard]
# pydantic
# --- Preis-Recherche / Scraper (src/scrapers) ---
# httpx
# beautifulsoup4
# --- Tests ---
# pytest