Initial commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
"""
|
||||
TextGen service module for interacting with the Text Generation WebUI API.
|
||||
"""
|
||||
|
||||
from .client import TextGenClient
|
||||
from .models import (
|
||||
ChatMessage,
|
||||
ChatCompletionRequest,
|
||||
ChatCompletionResponse,
|
||||
CompletionRequest,
|
||||
CompletionResponse,
|
||||
ModelInfo,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"TextGenClient",
|
||||
"ChatMessage",
|
||||
"ChatCompletionRequest",
|
||||
"ChatCompletionResponse",
|
||||
"CompletionRequest",
|
||||
"CompletionResponse",
|
||||
"ModelInfo",
|
||||
]
|
||||
Reference in New Issue
Block a user