[deleted]
AI for AWS Documentation
71–80 of 134 posts
Re: AI for AWS Documentation
#72Re: AI for AWS Documentation
#73Earlier quoted context omitted.
Asking the same question to Chatgpt To connect a Lambda function to an RDS (Relational Database Service) instance and query it safely, you can follow these general steps: 1. Configure your Lambda function's execution role: Ensure that your Lambda function has the necessary permissions to access the RDS instance. The role should include the `AWSLambdaVPCAccessExecutionRole` and the appropriate RDS permissions. 2. Plac…
This all looks about right, but how would somebody without aws experience be able to validate it without making a mess?
Re: AI for AWS Documentation
#74How do I connect two VPCs from separate organizations (VPC peering)
How do I only allow authorized applications to access my S3 bucket (BPA, IAM policies, a lot of best practices docs)
Re: AI for AWS Documentation
#75Re: AI for AWS Documentation
#76Earlier quoted context omitted.
ChatGPT is not up to date unless you start using the plugins. This sort of indexing is based on vector databases and various intermediate prompting. If you want to get technical, the academic term is "Retrieval Augmented Generation".
Hallucination is unfortunately inevitable when it comes to any autoregressive model, even with RAG. You can minimize hallucination by prompting, but you'll still see some factually incorrect responses here and there ( https://zilliz.com/blog/ChatGPT-VectorDB-Prompt-as-code ). I unfortunately don't think we'll be able to solve hallucination anytime soon. Maybe with the successor to the transformer architecture?
We’ve been testing LLM responses with a CLI, we’re using it to generate accuracy statistics, which is especially useful when the use-case Q/A is limited.
If ‘confidence’ can be returned to the user, then at least they can have an indication if there is a higher quality-risk with a given response.
Re: AI for AWS Documentation
#77This is exactly the kind of software that people should be making. Even if this one is bad, the concept is very sound. I want to have a specialist AI that is trained to help me learn how to use the software. 100% what should be happening. General AI should know how to do stuff too but having an specialist AI implies that the company/group of people/person is making sure to tune the model. Just an IMO.
Re: AI for AWS Documentation
#78Earlier quoted context omitted.
Asking the same question to Chatgpt To connect a Lambda function to an RDS (Relational Database Service) instance and query it safely, you can follow these general steps: 1. Configure your Lambda function's execution role: Ensure that your Lambda function has the necessary permissions to access the RDS instance. The role should include the `AWSLambdaVPCAccessExecutionRole` and the appropriate RDS permissions. 2. Plac…
This all looks about right, but how would somebody without aws experience be able to validate it without making a mess?
Re: AI for AWS Documentation
#79RAG is very difficult to do right. I am experimenting with various RAG projects from [1]. The main problems are: - Chunking can interfer with context boundaries - Content vectors can differ vastly from question vectors, for this you have to use hypothetical embeddings (they generate artificial questions and store them) - Instead of saving just one embedding per text-chuck you should store various (text chunk, hypothe…