Misty Waters

Misty Waters Profile Photo
AI Developer UI/UX Designer

Generative AI Engineer

Hands-on experience in Python, LangChain, and LLM integration. Built AI + Web3 experimental projects during hackathons and fellowships. Exploring decentralized AI applications (Dev3Pack Fellow, BuidlGuidl member).

About Me

I'm a Generative AI Engineer with hands-on experience in Python, LangChain, and LLM integration. I build AI-driven applications that connect humans and machines more intuitively, from winning AI hackathons to crafting sophisticated LLM-based solutions. My journey also includes exploring decentralized AI applications through fellowships like Dev3Pack and BuidlGuidl, where I've developed experimental projects bridging AI and Web3 technologies. Certified in AI agent building and a proud graduate of the 10x Data Bootcamp.

Featured Projects

Python in Action

Real-world code examples showcasing my AI development skills with LangChain, OpenAI, and modern Python frameworks.

LangChain Agent

from langchain.agents import initialize_agent
from langchain.llms import OpenAI

llm = OpenAI(temperature=0.7)
agent = initialize_agent(
    llm=llm,
    tools=[],
    verbose=True
)
result = agent.run(
    "Summarize this article in 3 bullet points."
)

Building intelligent agents with LangChain for automated task completion.

Vector Embeddings

from langchain.embeddings import OpenAIEmbeddings
from langchain.vectorstores import FAISS

embeddings = OpenAIEmbeddings()
texts = ["AI is transforming healthcare",
         "Machine learning enables automation"]

vectorstore = FAISS.from_texts(
    texts, embeddings
)
docs = vectorstore.similarity_search(
    "healthcare technology", k=2
)

Implementing semantic search with vector databases for intelligent retrieval.

RAG Pipeline

from langchain.chains import RetrievalQA
from langchain.llms import OpenAI

qa_chain = RetrievalQA.from_chain_type(
    llm=OpenAI(),
    chain_type="stuff",
    retriever=vectorstore.as_retriever(),
    return_source_documents=True
)

response = qa_chain(
    "What are the benefits of AI in healthcare?"
)

Building RAG systems for context-aware AI responses with document retrieval.

Web3 Agent

from web3 import Web3
from langchain.tools import tool

@tool
def get_balance(address: str) -> str:
    """Get ETH balance for an address"""
    w3 = Web3(Web3.HTTPProvider('infura_url'))
    balance = w3.eth.get_balance(address)
    return w3.from_wei(balance, 'ether')

agent = initialize_agent(
    tools=[get_balance],
    llm=OpenAI(temperature=0)
)

Integrating blockchain functionality with AI agents for decentralized applications.

Data Pipeline

import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestClassifier

# Load and preprocess data
df = pd.read_csv('data.csv')
df = df.dropna()

# Feature engineering
X = df.drop('target', axis=1)
y = df['target']

# Train model
X_train, X_test, y_train, y_test = train_test_split(
    X, y, test_size=0.2, random_state=42
)

model = RandomForestClassifier(n_estimators=100)
model.fit(X_train, y_train)

End-to-end data processing pipeline with machine learning model training.

FastAPI Service

from fastapi import FastAPI
from pydantic import BaseModel

app = FastAPI()

class Query(BaseModel):
    text: str
    max_tokens: int = 100

@app.post("/generate")
async def generate_response(query: Query):
    response = llm.generate(
        prompt=query.text,
        max_tokens=query.max_tokens
    )
    return {"response": response}

@app.get("/health")
async def health_check():
    return {"status": "healthy"}

Building production-ready AI APIs with FastAPI for scalable deployments.

Open Source Contributions & Community Involvement

Contributing to the open source ecosystem through documentation improvements, workflow enhancements, and community participation in protocol-level development.

OnlyDust OSS Week

Contributor during OnlyDust OSS Week: wrote documentation, improved workflow, and submitted PRs across protocol-level repos. Focused on enhancing developer experience and code clarity in the Ethereum ecosystem.

View PR

Women in Ethereum Protocol (WIEP) Cohort 4

Active participant in WIEP study group: forked repos, created branches, shipped issues and PRs, and helped propel community contributions in the Ethereum ecosystem. Contributing to protocol-level improvements and documentation.

View PR

Resume

Misty Waters

Springfield
mistyrain11@gmail.com
+1 417-365-0708
Portfolio Site

Professional Summary

Generative AI Engineer experienced in building AI-powered applications with expertise in Python, SQL, LangChain, and prompt engineering. Adept at collaborating across teams to develop intelligent, user-centered AI solutions.

Professional Experience

GenAI Knowledge Expert (Contract)
Aug 2025 – Present

Tundra Technologies • Remote

  • Crafted and evaluated AI-generated outputs; contributed to foundational model training via structured labeling and original content creation
  • Participated in product reviews and optimization discussions for LLM efficiency and response quality
  • Helped train QA teams in editorial standards and data labeling best practices
Visual Annotation Expert
May 2024 – Mar 2025

Mercor • Remote

  • Annotated visual data and language prompts for LLM grounding tasks and entity recognition
  • Provided tone/context evaluation for dual-mode (text and visual) datasets
Generative AI Content & QA Specialist
2024 - 2025

Innodata • Remote

  • Designed and improved prompts to enhance readability, coherence, and alignment with brand tone
  • Evaluated LLM responses for hallucinations, stylistic drift, and factual alignment
AI Data Engineer
2024 - 2025

Welocalize • Remote

  • Created scalable annotation frameworks and QA guidelines for LLM evaluation pipelines
  • Recommended revisions to improve clarity and consistency across AI-generated content
AI Grant Proposal Writer
Feb 2023 – June 2023

Certified Dream Builder • Remote

  • Used generative AI to draft high-quality proposals, increasing success rate by 25%
  • Implemented iterative prompt engineering to improve alignment with funding criteria
Consumer Relations Specialist
Jan 2019 – Jan 2023

Expedia • Springfield, MO

  • Resolved high-volume customer billing issues; performed data reconciliation and reporting

Education

B.S. Professional Communications

Evangel University

Springfield, MO • 2016

Certifications

10x Data Analysis Bootcamp Aug 2024 – Mar 2025
Neuralseek AI Agent Developer Jan 2024 – Jan 2025
LinkedIn Generative AI Jan 2024
AI for Executives Jan 2025
IBM Introduction to AI Jan 2023

Technical Skills

Programming Languages
Python SQL JavaScript Bash
Frameworks & APIs
FastAPI LangChain OpenAI API Claude API HuggingFace
AI/ML Techniques
RAG LLM Integration Prompt Engineering NLP
Vector Databases
Pinecone FAISS Weaviate
Cloud & Tools
Docker GitHub Google Cloud AWS Azure
Libraries & Other
Pandas scikit-learn Streamlit REST APIs

Achievements

2nd Place

Let's Vent – CreateHERfest Hackathon (2025)

2nd Place

Mosaic Culture – AI Challenge (2025)

Let's Connect

I'm open to freelance, contract, or full-time roles in GenAI, NLP, or AI product engineering.

Email: mistyrain11@gmail.com

LinkedIn: /misty-waters

GitHub: /rainwaters11