mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-17 22:47:14 +00:00
fixing linter
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
This commit is contained in:
parent
2fb07a7034
commit
d3097ecc73
20 changed files with 122 additions and 104 deletions
|
|
@ -77,7 +77,7 @@ interface ToolResult {
|
|||
toolName: string;
|
||||
result: {
|
||||
__cancelled?: boolean;
|
||||
[key: string]: any;
|
||||
[key: string]: unknown;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -101,7 +101,7 @@ interface TextPart {
|
|||
// For compatibility with AI SDK types, not used
|
||||
interface SourcePart {
|
||||
type: "source";
|
||||
source?: any;
|
||||
source?: unknown;
|
||||
}
|
||||
|
||||
interface FilePart {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue