Skip to content

Commit

Permalink
0.0.1-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
arolleaguekeng committed Jul 30, 2024
1 parent d9103d2 commit b72dec0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ export const appConfig: ApplicationConfig = {

```typescript
import { Component } from '@angular/core';
import { FlexbotCurrentTextModel, FlexbotCurrentImageModel } from 'ng-flexbot';
import { environment } from '../environments/environment';
import { FlexbotCurrentImageModel, FlexbotCurrentTextModel } from '@ng-flexbot/ng-flexbot/models/flexbot-current-llm.enum';


@Component({
standalone: true,
Expand All @@ -86,8 +86,8 @@ import { environment } from '../environments/environment';
})
export class AppComponent {
title = 'flexbot-demo';
googleApikey = environment.googleApiKey;
openaiApikey = environment.openaiApiKey;
googleApikey = "[YOUR_GOOGLE_API_KEY]";
openaiApikey = "[YOUR_OPENAI_API_KEY]";
promptContext = "you only know questions about Angular"
textModel = FlexbotCurrentTextModel.GOOGLE_GEMINI_PRO;
imageModel = FlexbotCurrentImageModel.OPEN_AI_GPT_4o_MINI;
Expand Down
2 changes: 1 addition & 1 deletion libs/ng-flexbot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-flexbot",
"version": "0.0.1-beta.4",
"version": "0.0.1-beta.5",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-flexbot",
"version": "0.0.1-beta.4",
"version": "0.0.1-beta.5",
"license": "MIT",
"scripts": {},
"private": false,
Expand Down

0 comments on commit b72dec0

Please sign in to comment.