mirror of
https://github.com/open-webui/pipelines
synced 2025-05-11 16:10:45 +00:00
chore: frontmatters
This commit is contained in:
parent
2059c7d05e
commit
895f470a22
@ -1,3 +1,13 @@
|
||||
"""
|
||||
title: Haystack Pipeline
|
||||
author: open-webui
|
||||
date: 2024-05-30
|
||||
version: 1.0
|
||||
license: MIT
|
||||
description: A pipeline for retrieving relevant information from a knowledge base using the Haystack library.
|
||||
requirements: haystack-ai, datasets>=2.6.1, sentence-transformers>=2.2.0
|
||||
"""
|
||||
|
||||
from typing import List, Union, Generator, Iterator
|
||||
from schemas import OpenAIChatMessage
|
||||
import os
|
||||
|
@ -1,3 +1,13 @@
|
||||
"""
|
||||
title: Langfuse Filter Pipeline
|
||||
author: open-webui
|
||||
date: 2024-05-30
|
||||
version: 1.0
|
||||
license: MIT
|
||||
description: A filter pipeline that uses Langfuse.
|
||||
requirements: langfuse
|
||||
"""
|
||||
|
||||
from typing import List, Optional
|
||||
from schemas import OpenAIChatMessage
|
||||
import os
|
||||
|
@ -1,3 +1,12 @@
|
||||
"""
|
||||
title: LiteLLM Manifold Pipeline
|
||||
author: open-webui
|
||||
date: 2024-05-30
|
||||
version: 1.0
|
||||
license: MIT
|
||||
description: A manifold pipeline that uses LiteLLM.
|
||||
"""
|
||||
|
||||
from typing import List, Union, Generator, Iterator
|
||||
from schemas import OpenAIChatMessage
|
||||
from pydantic import BaseModel
|
||||
|
@ -1,3 +1,13 @@
|
||||
"""
|
||||
title: LiteLLM Subprocess Manifold Pipeline
|
||||
author: open-webui
|
||||
date: 2024-05-30
|
||||
version: 1.0
|
||||
license: MIT
|
||||
description: A manifold pipeline that uses LiteLLM as a subprocess.
|
||||
requirements: yaml, litellm[proxy]
|
||||
"""
|
||||
|
||||
from typing import List, Union, Generator, Iterator
|
||||
from schemas import OpenAIChatMessage
|
||||
from pydantic import BaseModel
|
||||
|
@ -1,3 +1,13 @@
|
||||
"""
|
||||
title: Llama C++ Pipeline
|
||||
author: open-webui
|
||||
date: 2024-05-30
|
||||
version: 1.0
|
||||
license: MIT
|
||||
description: A pipeline for generating responses using the Llama C++ library.
|
||||
requirements: llama-cpp-python
|
||||
"""
|
||||
|
||||
from typing import List, Union, Generator, Iterator
|
||||
from schemas import OpenAIChatMessage
|
||||
|
||||
|
@ -1,3 +1,13 @@
|
||||
"""
|
||||
title: Llama Index Ollama Github Pipeline
|
||||
author: open-webui
|
||||
date: 2024-05-30
|
||||
version: 1.0
|
||||
license: MIT
|
||||
description: A pipeline for retrieving relevant information from a knowledge base using the Llama Index library with Ollama embeddings from a GitHub repository.
|
||||
requirements: llama-index, llama-index-llms-ollama, llama-index-embeddings-ollama, llama-index-readers-github
|
||||
"""
|
||||
|
||||
from typing import List, Union, Generator, Iterator
|
||||
from schemas import OpenAIChatMessage
|
||||
import os
|
||||
|
@ -1,3 +1,13 @@
|
||||
"""
|
||||
title: Llama Index Ollama Pipeline
|
||||
author: open-webui
|
||||
date: 2024-05-30
|
||||
version: 1.0
|
||||
license: MIT
|
||||
description: A pipeline for retrieving relevant information from a knowledge base using the Llama Index library with Ollama embeddings.
|
||||
requirements: llama-index, llama-index-llms-ollama, llama-index-embeddings-ollama
|
||||
"""
|
||||
|
||||
from typing import List, Union, Generator, Iterator
|
||||
from schemas import OpenAIChatMessage
|
||||
|
||||
|
@ -1,3 +1,13 @@
|
||||
"""
|
||||
title: Llama Index Pipeline
|
||||
author: open-webui
|
||||
date: 2024-05-30
|
||||
version: 1.0
|
||||
license: MIT
|
||||
description: A pipeline for retrieving relevant information from a knowledge base using the Llama Index library.
|
||||
requirements: llama-index
|
||||
"""
|
||||
|
||||
from typing import List, Union, Generator, Iterator
|
||||
from schemas import OpenAIChatMessage
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user