Skip to content

Commit 65eba2b

Browse files
devgopherIgor Evdokimov
authored and
Igor Evdokimov
committed
- samples renaming fixed
1 parent b32db36 commit 65eba2b

File tree

8 files changed

+53
-1
lines changed

8 files changed

+53
-1
lines changed

Botticelli.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ai.ChatGpt.Sample.Telegram"
166166
EndProject
167167
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Messaging.Sample.Telegram", "Samples\Messaging.Sample.Telegram\Messaging.Sample.Telegram.csproj", "{195344A3-DE14-4283-B7FB-3A5822C5C0FC}"
168168
EndProject
169-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelegramAiYaGptSample", "Samples\TelegramAiYaGptSample\TelegramAiYaGptSample.csproj", "{D44E775F-7474-4F49-8633-384DC87BE40B}"
169+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ai.YaGpt.Sample.Telegram", "Samples\Ai.YaGpt.Sample.Telegram\Ai.YaGpt.Sample.Telegram.csproj", "{D44E775F-7474-4F49-8633-384DC87BE40B}"
170170
EndProject
171171
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ai.YaGpt.Sample.Vk", "Samples\Ai.YaGpt.Sample.Vk\Ai.YaGpt.Sample.Vk.csproj", "{20AE866A-89D1-4C72-ADAC-545E44AB1354}"
172172
EndProject
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"$schema": "https://json.schemastore.org/launchsettings.json",
3+
"profiles": {
4+
"TelegramAiDeepSeekGptSample": {
5+
"commandName": "Project",
6+
"dotnetRunMessages": true,
7+
"launchBrowser": false,
8+
"launchUrl": "",
9+
"applicationUrl": "http://localhost:5074",
10+
"environmentVariables": {
11+
"ASPNETCORE_ENVIRONMENT": "Development",
12+
"SampleSettings__SecureStorageConnectionString": "Filename=database.db;Password=123;Connection=Shared",
13+
"DeepSeekGptSettings__ApiKey": "sk-366686492d644ce2b984a718011ac10e",
14+
"DeepSeekGptSettings__Model": "deepseek-chat",
15+
"DeepSeekGptSettings__Temperature": "0.8",
16+
"DeepSeekGptSettings__Instruction": "Test bot",
17+
"DeepSeekGptSettings__MaxTokens": "5000",
18+
"DeepSeekGptSettings__StreamGeneration": "true",
19+
"DeepSeekGptSettings__Url": "https://api.deepseek.com/v1/chat/",
20+
"DeepSeekGptSettings__AiName": "DeepSeekGpt",
21+
"ServerSettings__ServerUri": "http://localhost:53635/v1/",
22+
"AnalyticsSettings__ServerUri": "http://localhost:5251/v1/"
23+
}
24+
}
25+
}
26+
}

Samples/TelegramAiYaGptSample/TelegramAiYaGptSample.csproj renamed to Samples/Ai.YaGpt.Sample.Telegram/Ai.YaGpt.Sample.Telegram.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7+
<RootNamespace>TelegramAiYaGptSample</RootNamespace>
78
</PropertyGroup>
89

910
<ItemGroup>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Information",
5+
"Microsoft.AspNetCore": "Warning"
6+
}
7+
},
8+
"DataAccess": {
9+
"ConnectionString": "Filename=database.db;Password=123;ReadOnly=false"
10+
},
11+
"Server": {
12+
"ServerUri": "http://113.30.189.83:5042/v1/"
13+
},
14+
"AnalyticsClient": {
15+
"TargetUrl": "http://localhost:5251/v1/"
16+
},
17+
"TelegramBot": {
18+
"timeout": 60,
19+
"useThrottling": true,
20+
"useTestEnvironment": false,
21+
"name": "TestBot"
22+
},
23+
"AllowedHosts": "*"
24+
}
25+
-64 KB
Binary file not shown.

0 commit comments

Comments
 (0)