Skip to content
Open
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
26cf19a
979100: Added gemini and openai samples
KaviBharathi-SF5060 Sep 23, 2025
17ef714
966391: Updated Asp.net UG Documentation
Ashwini-SF5049 Sep 24, 2025
e4202a6
966391: Updated Asp.net UG Documentation
Ashwini-SF5049 Sep 24, 2025
c1106e0
966391: Updated Asp.net UG Documentation
Ashwini-SF5049 Sep 24, 2025
001c0df
Merge pull request #4553 from syncfusion-content/EJ2-966391-hotfix-asp
Deepak-Ramakrisnan Sep 24, 2025
a53edaf
966391: Updated Asp.net UG Documentation
Ashwini-SF5049 Sep 25, 2025
35a918a
Merge pull request #4555 from syncfusion-content/EJ2-966391-hotfix
Deepak-Ramakrisnan Sep 25, 2025
668bef4
Merge branch 'hotfix/hotfix-v31.1.17' into 979100-updated-aiAssistvie…
TamilRamGanesan-SF5080 Sep 25, 2025
3baee0e
979100: conversation of open ai to azure open ai
TamilRamGanesan-SF5080 Sep 25, 2025
b3c8d64
Merge pull request #4551 from syncfusion-content/979100-updated-aiAss…
IndrajithSrinivasan Sep 26, 2025
6a179c1
982586: added AI integration and bot integration with Chat UI
TamilRamGanesan-SF5080 Sep 26, 2025
679c004
982586: removed console lines
TamilRamGanesan-SF5080 Sep 27, 2025
9e3cb02
added comments for variables
TamilRamGanesan-SF5080 Sep 27, 2025
9e1b40d
Update 31.1.18.md
Hema1201 Sep 30, 2025
30228b0
Update 31.1.20.md
Hema1201 Sep 30, 2025
00a96a9
Update 31.1.21.md
Hema1201 Sep 30, 2025
d05f095
Merge pull request #4561 from syncfusion-content/982586-Hotfix-ChatUI…
IndrajithSrinivasan Sep 30, 2025
32f1fcd
000: Test Results publishing related changes committed
Satheeskumar-1989 Sep 30, 2025
4901d11
Added the release notes MD file and corresponding node entry in the T…
DeepakRajSundar Sep 30, 2025
b339b6c
Merge pull request #4563 from syncfusion-content/Core-version-changes
thavasianand Oct 1, 2025
5b3aadd
updated concerns in md file
TamilRamGanesan-SF5080 Oct 1, 2025
3dc54f9
Merge pull request #4571 from syncfusion-content/Updated-concerns-hotfix
IndrajithSrinivasan Oct 1, 2025
1db34b2
updated latest concerns in UG
TamilRamGanesan-SF5080 Oct 5, 2025
c315323
Merge pull request #4574 from syncfusion-content/AI-UG-Concerns-Hotfix
IndrajithSrinivasan Oct 6, 2025
396e341
Documentation(985533)- Added the missing module
Gayathri4135 Oct 6, 2025
37f2b5f
Updated the md file
Gayathri4135 Oct 6, 2025
5466219
Added the release notes MD file and corresponding node entry in the T…
DeepakRajSundar Oct 6, 2025
1eb9202
Merge pull request #4576 from syncfusion-content/985533-core-mvc-docs
thavasianand Oct 9, 2025
2231f37
985781: Paste cleanup documentation improvement for Core/MVC
Bhuvaneshwari-SF4208 Oct 10, 2025
1216ea5
Update paste-cleanup.md
Bhuvaneshwari-SF4208 Oct 13, 2025
f194afd
Update paste-cleanup.md
Bhuvaneshwari-SF4208 Oct 13, 2025
1a487b8
Update paste-cleanup.md
Bhuvaneshwari-SF4208 Oct 13, 2025
e2f0e92
Merge pull request #4587 from syncfusion-content/985781-paste-h
saravanangn Oct 13, 2025
c3c60ff
986172: Updated review concerns for AI integrations in core and mvc.
VigneshwaranGovindharajan Oct 13, 2025
e35ccab
986172: Updated review concerns for AI integrations in core and mvc.
VigneshwaranGovindharajan Oct 13, 2025
c4c9f9f
986172: Updated review concerns for AI integrations in core and mvc.
VigneshwaranGovindharajan Oct 14, 2025
8d5d2ea
986172: Updated review concerns.
VigneshwaranGovindharajan Oct 14, 2025
ae651af
Update ollama-llm-integration.md
TamilRamGanesan-SF5080 Oct 14, 2025
10298d3
Update ollama-llm-integration.md
TamilRamGanesan-SF5080 Oct 14, 2025
855a57c
Update ollama-llm-integration.md
TamilRamGanesan-SF5080 Oct 14, 2025
76dccf4
Update ollama-llm-integration.md
TamilRamGanesan-SF5080 Oct 14, 2025
654eeb8
Merge pull request #4591 from syncfusion-content/986172-Concerns-MD-htfx
thangavele Oct 14, 2025
3e1c90b
986172: update the namin in md file
TamilRamGanesan-SF5080 Oct 15, 2025
d1856d8
Merge pull request #4597 from syncfusion-content/986172-update-UG-hotfix
thangavele Oct 15, 2025
e1ed29d
986985: updated the speech to text samples
KaviBharathi-SF5060 Oct 15, 2025
c6c3d3d
Merge pull request #4601 from syncfusion-content/986985-hotfix-stt
thangavele Oct 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added comments for variables
  • Loading branch information
TamilRamGanesan-SF5080 committed Sep 27, 2025
commit 9e3cb025925009589101690106ff15f1731b0795
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public async Task<IActionResult> GetAIResponse([FromBody] PromptRequest request)

string apiKey = ""; // Replace with your key
var googleAI = new GoogleAI(apiKey: apiKey);
var model = googleAI.GenerativeModel(model: Model.Gemini15Flash);
var model = googleAI.GenerativeModel(model: Model.Gemini15Flash); //Replace Your Model Name Here

var responseText = await model.GenerateContent(request.Prompt);

Expand Down