Skip to content

Commit

Permalink
Merge pull request #919 from isamu/llm_utils_typo
Browse files Browse the repository at this point in the history
fix llm_utils typo
  • Loading branch information
isamu authored Feb 2, 2025
2 parents 8cde314 + 417eeb7 commit ff906b3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 17 deletions.
7 changes: 0 additions & 7 deletions llm_agents/llm_utils/lib/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
export type GrapAILLInputType = string | (string | undefined)[] | undefined;
export type GrapAILLMInputBase = {
prompt?: GrapAILLInputType;
system?: GrapAILLInputType;
mergeablePrompts?: GrapAILLInputType;
mergeableSystem?: GrapAILLInputType;
};
export type GraphAILLInputType = string | (string | undefined)[] | undefined;
export type GraphAILLMInputBase = {
prompt?: GraphAILLInputType;
Expand Down
10 changes: 0 additions & 10 deletions llm_agents/llm_utils/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
// typo (todo remove later)
export type GrapAILLInputType = string | (string | undefined)[] | undefined;

export type GrapAILLMInputBase = {
prompt?: GrapAILLInputType;
system?: GrapAILLInputType;
mergeablePrompts?: GrapAILLInputType;
mergeableSystem?: GrapAILLInputType;
};

// valid
export type GraphAILLInputType = string | (string | undefined)[] | undefined;

Expand Down

0 comments on commit ff906b3

Please sign in to comment.