Skip to content

Commit f2a5804

Browse files
Revert unintended changes to featherless.ts, codeSearchTool.ts and c-sharp.ts
1 parent 7813862 commit f2a5804

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

src/api/providers/featherless.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
import {
2-
DEEP_SEEK_DEFAULT_TEMPERATURE,
3-
type FeatherlessModelId,
4-
featherlessDefaultModelId,
5-
featherlessModels,
6-
} from "@roo-code/types"
1+
import { DEEP_SEEK_DEFAULT_TEMPERATURE, type FeatherlessModelId, featherlessDefaultModelId, featherlessModels } from "@roo-code/types"
72
import { Anthropic } from "@anthropic-ai/sdk"
83
import OpenAI from "openai"
94

src/core/tools/codebaseSearchTool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export async function codebaseSearchTool(
1717
removeClosingTag: RemoveClosingTag,
1818
) {
1919
const toolName = "codebase_search"
20-
const workspacePath = cline.cwd && cline.cwd.trim() !== "" ? cline.cwd : getWorkspacePath()
20+
const workspacePath = (cline.cwd && cline.cwd.trim() !== '') ? cline.cwd : getWorkspacePath()
2121

2222
if (!workspacePath) {
2323
// This case should ideally not happen if Cline is initialized correctly

src/services/tree-sitter/queries/c-sharp.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,5 @@ export default `
6363
; LINQ expressions
6464
(query_expression) @definition.linq_expression
6565
`
66+
67+

0 commit comments

Comments
 (0)