Skip to content

Commit

Permalink
fix: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dosco committed Dec 4, 2024
1 parent 044b3d0 commit e5f6f15
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/ax/ai/google-gemini/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,13 @@ export type AxAIGoogleGeminiChatResponse = {
candidates: {
content: AxAIGoogleGeminiContent;

finishReason: 'STOP' | 'MAX_TOKENS' | 'SAFETY' | 'RECITATION' | 'OTHER';
finishReason:
| 'STOP'
| 'MAX_TOKENS'
| 'SAFETY'
| 'RECITATION'
| 'OTHER'
| 'MALFORMED_FUNCTION_CALL';
citationMetadata: {
citations: {
startIndex: number;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
export default {
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
Expand Down

0 comments on commit e5f6f15

Please sign in to comment.