We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f85d390 commit a37d641Copy full SHA for a37d641
.github/workflows/ci.yml
@@ -25,6 +25,7 @@ jobs:
25
- name: Run Tests
26
env:
27
CB_PROJECT_ID: ${{ secrets.CB_PROJECT_ID }}
28
+ CB_API_KEY: ${{ secrets.CB_API_KEY }}
29
run: pytest
30
31
release:
commonbase/__init__.py
@@ -3,6 +3,7 @@
3
from commonbase.chat_context import ChatContext, ChatMessage
4
from commonbase.provider_config import ProviderConfig, OpenAIParams, AnthropicParams
5
from commonbase.truncation_config import TruncationConfig
6
+from commonbase.completion_response import CompletionResponse
7
8
__all__: [
9
"Completion",
@@ -14,4 +15,5 @@
14
15
"OpenAIParams",
16
"AnthropicParams",
17
"TruncationConfig",
18
+ "CompletionResponse",
19
] # type: ignore
0 commit comments