Skip to content

Instantly share code, notes, and snippets.

@s-macke
Last active October 27, 2024 10:19
Show Gist options
  • Save s-macke/f7eb89d973b1c682c194ac136522ca20 to your computer and use it in GitHub Desktop.
Save s-macke/f7eb89d973b1c682c194ac136522ca20 to your computer and use it in GitHub Desktop.
Vom Code zum Copiloten: Ein Blick auf das Neueste in der KI-Softwareentwicklung

GitHub Copilot

Other AI Coding helpers

Future: GitHub Copilot X

Smol AI - Create a full codebase based on a multiple pages long specification

Experiments for code refactoring, unit tests, creating READMEs, .....

Future: Planning, correction and self-reflection. Can access the Internet

Future: AI reads a 240 pages API document and can write code afterwards

Future: Sketch of of websites is transformed to HTML

Train Code Interviews for your future job

Python Tools

Cody, another coding assistant

Code Interpreter as OpenAI plugin

PandasAI - How Google sheet or Excel might work with a ChatBot

import pandas as pd
from pandasai import PandasAI

from pandasai.llm.openai import OpenAI
llm = OpenAI(api_token="")
pandas_ai = PandasAI(llm)

df = pd.read_csv('grades.csv')
print(df)
#pandas_ai.run(df, prompt='Who had the best grade and who had the worst grade? The German grading system is used where 1.0 is the best.')
#pandas_ai.run(df, prompt='Show me the histogram of the mark?')
#pandas_ai.run(df, prompt='What is the average mark?')
pandas_ai.run(df, prompt='Who is the closest to the average mark?')
First name,Last name,Grade
Rachel,Booker,1.3
Laura,Grey,4
Craig,Johnson,2
Mary,Jenkins,2
Jamie,Smith,2.3

ChatGPT and Teaching

Best Youtube channel for current AI research

QAware

Personal websites

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment