2023-03-15 17:21:45 -03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
module ::DiscourseAi
|
|
|
|
|
module Database
|
|
|
|
|
class Connection
|
|
|
|
|
def self.db
|
2023-05-23 15:12:59 -03:00
|
|
|
pg_conn = PG.connect(SiteSetting.ai_embeddings_pg_connection_string)
|
|
|
|
|
MiniSql::Connection.get(pg_conn)
|
2023-03-15 17:21:45 -03:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|