Chunk #649
Aus: AI-Services (Index: 14)
127
Tokens
Synced
Status
Taxonomie
| Kategorie | AI-Services |
|---|---|
| Pfad | AI-Services > ChatService > RAG Pipeline |
| Heading-Pfad | AI-Services > AI Services > ChatService > Methoden |
Entities
| Name | Typ |
|---|---|
| OllamaService | SERVICE |
| QdrantService | SERVICE |
| ClaudeService | SERVICE |
| RAG | TECHNOLOGY |
| Chat | SERVICE |
| Anthropic | MODEL |
Keywords
Inhalt
final readonly class ChatService
{
public function __construct(
OllamaService $ollama,
QdrantService $qdrant,
ClaudeService $claude
);
/**
* Führt vollständige RAG-Chat-Pipeline aus.
* @return array{
* question: string,
* answer: string,
* sources: array,
* model: string,
* usage?: array,
* chunks_used: int
* }
* @throws RuntimeException
*/
public function chat(
string $question,
string $model = 'anthropic',
string $collection = 'documents',
int $limit = 5
): array;
}Clean Content
```
`final readonly class ChatService
{
public function __construct(
OllamaService $ollama,
QdrantService $qdrant,
ClaudeService $claude
);
/**
* Führt vollständige RAG-Chat-Pipeline aus.
* @return array{
* question: string,
* answer: string,
* sources: array,
* model: string,
* usage?: array,
* chunks_used: int
* }
* @throws RuntimeException
*/
public function chat(
string $question,
string $model = 'anthropic',
string $collection = 'documents',
int $limit = 5
): array;
}`
```
Metadaten
| Analysiert am | 20.12.2025 12:48:57 |
|---|---|
| Analyse-Modell | gemma3:4b-it-qat |
| Embedding-Modell | mxbai-embed-large |
| Qdrant-ID | f154882b-efd8-46ba-b3a9-5ef656430734 |
| Erstellt | 20.12.2025 12:34:42 |
| Aktualisiert | 20.12.2025 12:53:41 |