blob: 370933a002c3a5705d831b28240e5085614424e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from continuedev.core.config import ContinueConfig
from continuedev.core.models import Models
from continuedev.libs.llm.openai_free_trial import OpenAIFreeTrial
config = ContinueConfig(
allow_anonymous_telemetry=False,
models=Models(
default=OpenAIFreeTrial(api_key="", model="gpt-4"),
summarize=OpenAIFreeTrial(
api_key="",
model="gpt-3.5-turbo",
),
),
system_message=None,
temperature=0.5,
custom_commands=[],
slash_commands=[],
context_providers=[],
)
|