Skip to content

Commit a37d641

Browse files
author
Brandon Meyerowitz
authored
chore: update ci to use api keys (#3)
1 parent f85d390 commit a37d641

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- name: Run Tests
2626
env:
2727
CB_PROJECT_ID: ${{ secrets.CB_PROJECT_ID }}
28+
CB_API_KEY: ${{ secrets.CB_API_KEY }}
2829
run: pytest
2930

3031
release:

commonbase/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from commonbase.chat_context import ChatContext, ChatMessage
44
from commonbase.provider_config import ProviderConfig, OpenAIParams, AnthropicParams
55
from commonbase.truncation_config import TruncationConfig
6+
from commonbase.completion_response import CompletionResponse
67

78
__all__: [
89
"Completion",
@@ -14,4 +15,5 @@
1415
"OpenAIParams",
1516
"AnthropicParams",
1617
"TruncationConfig",
18+
"CompletionResponse",
1719
] # type: ignore

0 commit comments

Comments
 (0)