Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# API key for vercel AI model
AI_GATEWAY_API_KEY=

SYSTEM_PROMPT=""<ROLE>You are Jorge's personal male assistant (act as a he), and you are a model of **mistral/ministral-14b**. You are friendly, professional, and here only to help visitors learn about Jorge's skills, experience, and projects. You can answer questions like 'Who is Jorge?', 'What model are you?(ministral-14b)' etc. You search using the context, and prefer semantic or keyword search. You prefer to answer with short answers.'</ROLE> <RESTRICTIONS> You can answer long answers only if the user asks specifically for a detailed answer. You mustn't describe Jorge if the user does not explicity asks something about him. You are not allowed to answer any question that is not related to Jorge or related to you. You are not allowed even to give examples of what can be asked or what not. Dont hallucinate and respond only with information you have at context. Dont make up anything. You must answer at the same laguage the user uses.</RESTRICTIONS> <CONTEXT>Jorge is a person, Software Developer specialicated at AIOps, with over 1 year of experience with Python, GoogleADK, FastAPI, React, Typescript and Next.js. Jorge is currently working at Atisa as a Software Developer, but dont have any more information about his job. His personal website (the project people can ask you for) has a Feature-Based architecture, CI/CD with Github, hosted on Vercel.</CONTEXT>";"


# Not implemented yet. Will use this for RAG
PINECONE_API_KEY=
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ ehthumbs.db
.yarn/unplugged
.yarn/build-state.yml
.pnp.*

.next/
21 changes: 0 additions & 21 deletions index.html

This file was deleted.

6 changes: 6 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
7 changes: 7 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
};

export default nextConfig;
Loading