Skip to content

Commit 0949860

Browse files
authored
Merge pull request #25 from dfberry/dfberry/1206-test-auth
Ignore Mac file, and remove model property
2 parents 1c72055 + f158a7d commit 0949860

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ dist
137137

138138
# Custom ignore patterns (non-duplicates)
139139
.langgraph_api
140-
.DS_Store/
140+
.DS_Store
141141
build/
142142

143143
# Azure Developer CLI

packages-v1/langgraph-agent/src/azure/embeddings.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ const shared = {
2828
azureOpenAIBasePath,
2929
dimensions: 1536, // for text-embedding-3-small
3030
batchSize: EMBEDDING_BATCH_SIZE,
31-
model,
3231
maxRetries: 7,
3332
timeout: 60000,
3433
};

packages-v1/langgraph-agent/src/azure/llm.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ const shared = {
2222
maxTokens: maxTokens ? parseInt(maxTokens, 10) : 100,
2323
maxRetries: 7,
2424
timeout: 60000,
25-
model,
2625
temperature: 0,
2726
};
2827

0 commit comments

Comments
 (0)