This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | kind: Service | |
| apiVersion: v1 | |
| metadata: | |
| name: api | |
| spec: | |
| clusterIP: None | |
| selector: | |
| app: api | |
| ports: | |
| - port: 8080 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | export async function generateModels(context: string): Promise<Model[]> { | |
| if (!CONFIGURATION.generators.models) { | |
| return []; | |
| } | |
| const systemPrompt = ` | |
| You are a side project planner assistant, you are going to help me organize my thoughts to create a finished side project plan. | |
| I asked a user a bunch of questions and I need you to help me make a project plan. | |
| Project Context: ${context} |